Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipWriter Class / WriteItemData Method / WriteItemData(Byte[]) Method
A byte array whose contents will be taken from offset 0 to Byte.Length.


In This Topic
    WriteItemData(Byte[]) Method
    In This Topic
    Writes the entire supplied byte array to the ZipWriter object's stream.
    Syntax
    'Declaration
     
    Public Overloads Sub WriteItemData( _
       ByVal itemData() As Byte _
    ) 
    'Usage
     
    Dim instance As ZipWriter
    Dim itemData() As Byte
     
    instance.WriteItemData(itemData)
    public void WriteItemData( 
       byte[] itemData
    )

    Parameters

    itemData
    A byte array whose contents will be taken from offset 0 to Byte.Length.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also